User Administration for Oracle Autonomous Database

It is recommended that each user be assigned a personal database account with only the required privileges. The pdfkeeper database account should only be used for pdfkeeper schema administration, not for general use. For more information on Managing Users, please refer to the Oracle Database Documentation.

Perform the following steps for any user that will need access to the pdfkeeper schema. Substitute the username and password for user_name and password.

  1. Open a Command Prompt.

  2. Enter sqlplus admin/password@TNS_name

  1. For a new user, enter the following statement: create user user_name default tablespace users identified by "password";

  2. Enter grant create session to user_name;

  3. Enter quit

  4. Enter sqlplus pdfkeeper/password@TNS_name

  1. For a new account, enter the following statement to grant the user select/query access: grant select on docs to user_name;

  2. To give the user the ability to upload documents, enter the following statements: grant insert on docs to user_name; and grant select on docs_seq to user_name;

  3. To give the user the ability to update documents, enter the following statement: grant update on docs to user_name;

  4. To give the user the ability to delete documents, enter the following statement: grant delete on docs to user_name;

  5. To prevent the user from uploading documents, enter the following statements: revoke insert on docs from user_name; and revoke select on docs_seq from user_name;

  6. To prevent the user from updating documents, enter the following statement: revoke update on docs from user_name;

  7. To prevent the user from deleting documents, enter the following statement: revoke delete on docs from user_name;